home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d19 / zlabp_11.arc / GIFT40B.ARC / TESTGIF.BAT < prev   
DOS Batch File  |  1991-10-29  |  980b  |  35 lines

  1. @echo off
  2. rem  ProDoor/PCBoard batch file for testing GIF files
  3. rem  using GIFtest.  Requires ProEcho from Sam Smith.
  4. proecho %2 ~GIFtest 4.0ß - Courtesy of The Bard's Lair (718) 381-3651
  5. proecho %2 ~Testing Uploaded GIF File...
  6. rem  Log GIFs to C:\PCB\GIFLOG
  7. rem  Minimum size GIFs 321x201x16
  8. rem  Node 1 - Search for GIFTEST.CFG in the current directory
  9. rem  Erase failed GIFs
  10. giftest %1 /L:C:\PCB\GIFLOG /E /M:321x201x16 /N:1
  11. if errorlevel==25 goto DUPE
  12. if errorlevel==20 goto BADREZ
  13. if errorlevel==10 goto GIFLITE
  14. if errorlevel==1 goto INCOMPLETE
  15. proecho %2 ~Passed all tests!~~
  16. goto end
  17. :INCOMPLETE
  18. proecho %2 ~Invalid Image or Incomplete Upload
  19. proecho %2 ~Deleting GIF...~~
  20. del %1
  21. goto end
  22. :GIFLITE
  23. proecho %2 ~Detected GIFLITE, passed all tests~~
  24. goto end
  25. :BADREZ
  26. proecho %2 ~Failed Minimum Resolution of 321x201x16
  27. proecho %2 ~Deleteing GIF...~~
  28. del %1
  29. goto end
  30. :DUPE
  31. proecho %2 ~Duplicate GIF!
  32. proecho %2 ~Deleting GIF...~~
  33. del %1
  34. :END
  35.